home *** CD-ROM | disk | FTP | other *** search
/ Mac Magazin/MacEasy 1 / Mac Magazin and MacEasy Magazine CD - Issue 01.iso / Sharewarebibliothek / Powermac / C64 / SOURCE / Tape.c < prev    next >
Text File  |  1994-06-06  |  2KB  |  59 lines

  1. /*
  2.     Commodore 64 Emulator v0.4      Earle F. Philhower III 
  3.     Copyright (C) 1993-4            (st916w9r@dunx1.ocs.drexel.edu)
  4.  
  5.     This program is free software; you can redistribute it and/or modify
  6.     it under the terms of the GNU General Public License as published by
  7.     the Free Software Foundation; either version 2 of the License, or
  8.     (at your option) any later version.
  9.  
  10.     This program is distributed in the hope that it will be useful,
  11.     but WITHOUT ANY WARRANTY; without even the implied warranty of
  12.     MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
  13.     GNU General Public License for more details.
  14.  
  15.     You should have received a copy of the GNU General Public License
  16.     along with this program; if not, write to the Free Software
  17.     Foundation, Inc., 675 Mass Ave, Cambridge, MA 02139, USA.
  18. */
  19.  
  20. #include "Processor.h"
  21. #include "Resources.h"
  22.  
  23. extern int programMode;
  24. extern Cursor commieCursor, diskCursor;
  25.  
  26. void LoadTapeFS(FSSpec *spec)
  27. {
  28.     short fNum;
  29.     long len;
  30.     byte data;
  31.     word addr;
  32.             
  33.     FSpOpenDF(spec, fsRdPerm, &fNum);
  34.     SetFPos(fNum, fsFromStart, 0x42);
  35.     len=1; FSRead(fNum, &len, &data); addr=data;
  36.     len=1; FSRead(fNum, &len, &data); addr+=((word)data)<<8;
  37.     
  38.     SetFPos(fNum, fsFromStart, 0x0400);
  39.     len=1;
  40.     while (len) FSRead(fNum, &len, &(RAM[addr++]));
  41.     FSClose(fNum);
  42. }
  43.  
  44.  
  45. void LoadTape(void)
  46. {
  47.     StandardFileReply reply;
  48.             
  49.     StandardGetFile(nil, (short)-1, nil, &reply);
  50.     if (reply.sfGood)
  51.     {
  52.         SetCursor(&diskCursor);
  53.         LoadTapeFS(&reply.sfFile);
  54.     }
  55.     
  56.     if (programMode==kRunning) SetCursor(&commieCursor);
  57.     else SetCursor(&qd.arrow);
  58. }
  59.